-
Notifications
You must be signed in to change notification settings - Fork 620
[TOOL-3564] Playground: Select multiple chains in insight playground #6652
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
|
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #6652 +/- ##
=======================================
Coverage 54.98% 54.98%
=======================================
Files 889 889
Lines 55768 55768
Branches 3816 3816
=======================================
Hits 30665 30665
Misses 25008 25008
Partials 95 95
🚀 New features to boost your workflow:
|
size-limit report 📦
|
jnsdls
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe
Merge activity
|
…6652) <!-- start pr-codex --> ## PR-Codex overview This PR introduces a `MultiSelect` component along with a `useShowMore` hook to enhance the selection of network chains in a UI. It improves the user experience by allowing more items to be displayed as the user scrolls and provides a more flexible selection interface. ### Detailed summary - Added `useShowMore` hook to manage displaying more items on scroll. - Introduced `MultiNetworkSelector` for selecting multiple network chains. - Updated `BlueprintPlayground` to utilize `MultiNetworkSelector`. - Modified `ParameterSection` to handle array values for chain selection. - Created `MultiSelect` component for better multi-item selection. - Enhanced UI with search functionality and option rendering in `MultiSelect`. - Implemented badge display for selected items in `MultiSelect`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
92e63b4 to
7597418
Compare

PR-Codex overview
This PR introduces a new
MultiNetworkSelectorcomponent and aMultiSelectcomponent with enhanced functionality, including search and display of multiple network options. It also adds a custom hookuseShowMorefor lazy loading items in the UI.Detailed summary
useShowMorehook for lazy loading items.MultiNetworkSelectorcomponent for selecting multiple networks.MultiSelectcomponent with search functionality and lazy loading.BlueprintPlaygroundto utilizeMultiNetworkSelector.